Class org.omg.CORBA.SystemException
All Packages Class Hierarchy This Package Previous Next Index
Class org.omg.CORBA.SystemException
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.lang.RuntimeException
|
+----org.omg.CORBA.SystemException
- public class SystemException
- extends RuntimeException
The root class for all CORBA system exceptions. These exceptions
may be thrown as a result of any CORBA operation invocation and may
also be returned by many standard CORBA API methods. The standard
exceptions contain a minor code, allowing more detailed specification, and a
completion status. This class is subclassed to
generate each one of the set of standard ORB exceptions.
-
completed
-
Did the operation complete?
-
minor
-
CORBA Exception minor code
-
SystemException()
- The null Constructor, invoked only by direct subclasses.
-
SystemException(int, CompletionStatus)
- Constructs a SystemException with the specified
minor code and completion status.
-
SystemException(String)
-
-
SystemException(String, int, CompletionStatus)
- Constructs a SystemException with the specified detail
message, minor code, and completion status.
-
toString()
-
Convert this exception to a representative string.
minor
public int minor
- CORBA Exception minor code
completed
public CompletionStatus completed
- Did the operation complete?
SystemException
protected SystemException()
- The null Constructor, invoked only by direct subclasses.
SystemException
protected SystemException(String s)
SystemException
protected SystemException(int minor,
CompletionStatus completed)
- Constructs a SystemException with the specified
minor code and completion status.
- Parameters:
- minor - the minor code
- completed - the completion status
SystemException
protected SystemException(String s,
int minor,
CompletionStatus completed)
- Constructs a SystemException with the specified detail
message, minor code, and completion status.
A detail message is a String that describes this particular exception.
- Parameters:
- s - the String containing a detail message
- minor - the minor code
- completed - the completion status
toString
public String toString()
- Convert this exception to a representative string.
- Overrides:
- toString in class Throwable
All Packages Class Hierarchy This Package Previous Next Index